Termination Proof Script

Consider the TRS R consisting of the rewrite rules
1:    sum(0)  → 0
2:    sum(s(x))  → sum(x) + s(x)
3:    x + 0  → x
4:    x + s(y)  → s(x + y)
There are 3 dependency pairs:
5:    SUM(s(x))  → sum(x) +# s(x)
6:    SUM(s(x))  → SUM(x)
7:    x +# s(y)  → x +# y
The approximated dependency graph contains 2 SCCs: {7} and {6}. Hence the TRS is terminating.
Tyrolean Termination Tool  (0.01 seconds)   ---  May 3, 2006